home *** CD-ROM | disk | FTP | other *** search
/ Hacker's Secrets 4 / Hacker's Secrets 4.iso / misc / phelon1.txt < prev    next >
Text File  |  1996-04-25  |  9KB  |  225 lines

  1.  
  2.    ▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓▒▓▓   
  3.                                                                         /
  4.        THE                             _       * * *         /\        /
  5.     // ////////// \\\\       \\\\     |   ▌_  *     *       /  \      /
  6.    //         //    \\\        \\\    |-      *     *      /    \    /
  7.   //   ////////      \\\\ //////\\\\  |_      *     *     /      \  /
  8.  //                    \\\        \\\         *     *    /        \/
  9. ///                     \\\\       \\\\        * * *    /
  10. /////
  11.  
  12.    brings you another text phile and another bad ascii signature.
  13. ok this file will be about.. hmm.. let's see. how about unix.  
  14. ok.  well today we will talk about unices for the beginner, and then
  15. just as a side topic, one of my faves of all time, the tacobell unix.
  16. ;)  anyways if you are a beginner at unix then you should rtfm but i guess 
  17. since this is supposed to be the fm that you should read on. 
  18. (riiiight??) on the other hand, if you're more experienced with unix,
  19. check out the files "PHELON2.UNX" and "PHELON3.UNX" for more advanced 
  20. unix hacking techniques.
  21.  
  22.  
  23. ok .. let's start out with some defaults to help you out:
  24.  
  25. (root access - never seen any where the root pw was not changed.)
  26. root
  27. cron
  28. adm
  29. admin
  30. sysadmin
  31. sysadm
  32. checkfsys
  33. checkssys
  34. umountfsys
  35. makefsys
  36. lpadmin
  37.  
  38.  
  39.  - those are just a few with "root" access.. here are some more logins 
  40.  that may or may not have root privileges.
  41.  
  42. bin
  43. daemon
  44. lp
  45. uucp
  46. sysdiag
  47. tech
  48. diag
  49. ... and on and on and on... but this isn't a defaults list so we won't go
  50. on and on and on.  Find the phile "phelon.pws" written by yours truly
  51. for the biggest default list around.
  52.  
  53.  
  54.         but once you're in...
  55.  
  56. OK, say you managed to get your bumbling butt to a $ prompt or even 
  57. better (and even more unlikely - heheh) a # prompt then here is what you do.
  58.  
  59. TO START OUT:
  60.  
  61. get the passwd file
  62.  
  63. turn on your term program's capture 
  64. <start>
  65. $ypcat passwd
  66. <whole bunch of passwd shit should scroll down the screen>
  67. once it's done turn off the capture and save the buffered file. or whatever.
  68. if THAT didn't work, then type 
  69. <start>
  70. $sz passwd
  71. <download starts>
  72. this is even more unlikely to work... but it does work surprisingly often.
  73.         ok now assuming you have the passwd file you go get a lame cracking
  74. program like crack or crackerjack and run it over the passwd file with a 
  75. zillion wordlists, and of course, data from the GECOS fields.  More advanced  
  76. hacking comes later, for now get the accts and be happy until you reach
  77. the next section in this file concerning this.
  78.  
  79.         BUT WAIT A MINUTE!  I never got in!
  80.  
  81. ok say that the system you are trying to crack is super tight and is
  82. harder than a sonofabitch to get into.  my first advice would be to leave 
  83. it alone.  however, if not then continue to the advanced section and try
  84. out the techniques described there.
  85.  
  86.  
  87.         OK here we go with more intermediate hacking..
  88.  
  89. ok say you want to find out all you can about a certain system.  the first
  90. thing you should do is 'telnet <hostname> 79'.. this will telnet you to
  91. port 79 of the target un*x.  Basically what this will do is show you who
  92. is logged on and a bunch of info about them.  (oh, i should mention that
  93. a *lot* of systems have this little feature blocked..;).. but if you know the
  94. name of someone on the system you can still finger them remotely by using
  95. "finger user@host".. pretty elementary shit.  OK another telnet port you
  96. should know about and use actively is 25.  this will show you the version
  97. of everyone's fave prog, sendmail! heheh.. look for a good file written
  98. by i forget who bearing the title of sendmail.. this file has lots
  99. of good exploits for the beginning to intermediate unix hacker. :)
  100.  
  101.  
  102. **HEY!  I TRIED USING A PASSWD CRACKING PROG, BUT NOTHING WORKS!  THE 
  103. GECOS FIELDS ARE JUST FILLED WITH AN "X" or "*" WHERE THE ENCRYPTED PASSWD IS 
  104. SUPPOSED TO BE!!!
  105.  
  106. well calm down.. this is something called passwd shadowing, and to overcome
  107. it you will need either a program like unshad.c, shadowpw.c, etc etc., that
  108. will deshadow the passwd file so you can crack it or whatever.  or you
  109. can write one for yourself...
  110.  
  111. oh yeah, i almost forgot.  here are some basic commands in unix..
  112.  
  113.         ls - lists directory.  often used arguments are -al (all) and 
  114.         -alF (all + hidden.)
  115.         sz - send zmodem
  116.         rz - receive zmodem. up a trojan horse. ;)
  117.         chmod - change file permissions. 
  118.         chown - change file ownership
  119.         finger - finger a user
  120.         fortune - your fortune. heheheh
  121.         telnet - telnet
  122.         gopher - gopher
  123.         lynx - lynx (unix's shitty version of a web browser.)
  124.         irc - irc 
  125.         setenv (BSD, SysV) change environment variables such as your
  126.         IRCNAME, etc.
  127.         declare -x (Linux) pretty much the same as setenv but for linux
  128.         more < <filename> best way of reading a file (unless it's the passwd
  129.         file in which case it doesn't show you the whole thing.)
  130.         ftp - ftp
  131.         lp - print
  132.         cu - dialout
  133.         makefile - compile a prog
  134.         su - use it to try to hax root. <g>
  135.         setuid - set your user id shell
  136.         rm - delete a file
  137.         cd - change directory
  138.         rmdir - remove a dir
  139.         mkdir - make a directory
  140.         mv - move or rename a file
  141.         vi - vi txt editor
  142.         trn/tin/slrn - news readers
  143.         elm - text editor
  144.         emacs - text editor
  145.  
  146. oh and that other thing.. the tacobell unices.
  147.  
  148. TACO BELL is a funny place to hack.  i mean come on.. taco bell.  the 
  149. security *always* sux!  so anyways...
  150. 1) find the store #.  this is accomplished by kalling your local taco hell
  151. and saying:
  152. "I am Joe Schmoe the taco bell hoe and i need to speak to your manager."
  153. then when u are talking to the manager:
  154. "yeah, i need to know your store #"
  155. then they will say some shit or other and usually they will be cooperative.
  156. ONCE you have the store #, what you do is dial THIS #:
  157. *1.800.sos.taco*
  158. now once you dial this # u will be presented with a series of automated
  159. voice questions, etc, etc, bullshit yada yada so on and so forth.  just keep
  160. pressing whatever sounds relevant (like 1, for computer stuph) until you get
  161. a voice.  ONCE you have the voice:
  162. sucker: "yes, can i help you?"
  163. you: "yes, my name is bill clinton, and i'm the social engineer for the local
  164. branch of taco bell.  we were having problems connecting to our computer, and
  165. were wondering whether what # we were supposed to dial."
  166. sucker: "ok, hangon a second.  what is your store #?"
  167. <this is where you give the sucker the store # you obtained from dialing
  168. up your local store.>
  169. sucker: "ok, that's <NPA>, right?  the number is XXX-XXXX"
  170. you: "ok, thanks a lot!"
  171. sucker: "is that all the information you needed?!"
  172. you: "yeah, turns out we were dialing the wrong number. oops. heh."
  173. sucker: "heheh yeah that is kind of funny."
  174. you: "sure is.  well thanks for the information, and tell your wife she 
  175. gives great head.  bye."
  176. <click>
  177.  
  178. (for the people out there who hang on #hack, some of that stuff you 
  179. quite obviously wouldn't, and shouldn't, really say. <g>) 
  180.  
  181. NOW you dialup the number the sucker gave you...
  182. once you are connected you will see the usual taco bell bullshit.
  183. you can login with either:
  184.  
  185.         tacobell/ no password
  186.         rgm/rollout
  187.  
  188. and then once you're in just phuxor around or have a truckload of beans
  189. shipped to your enemy's house or whatever you feel like doing.  
  190.  
  191. for all the ppl in 612 here is the taco bell dialup for that ac:
  192. 888-5411
  193. --------------------------
  194.  
  195. well anyway that's about it .. this was a lame text phile written in 
  196. the middle of a class in skool (no joking i am supposed to be typing up
  197. some shit about the civil war.  heheh) so catch me on irc (i'll probably
  198. be banned from all the channels..heh) look for phelon and remember...
  199.  
  200.         "paranoia is a state of perfect awareness"
  201.  
  202. check for these other fine files written by the phelon 
  203. PHELON2.UNX (intermediate unix hacking), PHELON3.UNX (advanced unix hacking),
  204. PHELON.VMS, PHELON.CBI, PHELON.DEF (system75/definity), PHELON.PWS
  205.  
  206.  
  207.         
  208.         Error 23 - 612-869-2119 - sysop Bandon - looks like a normal
  209.         gamer board, all the kewl stuff is hidden deep in the heart
  210.         of the hard drive.. prove yourself for access to the secret areas!
  211.  
  212.         
  213.   phuck all warez d00dz and k)dez kidz and fedz and the lamers on #hack.
  214.         
  215.  thanks and hellos to deadfall, unslider, and bandon - these guys are truly 
  216.  elite and have helped me out a ton.
  217.  also hello to mara and spyder.. <g>, and everyone else who i 
  218.  would have remembered if i really gave a fuck about them one way or 
  219.  another...hehehe j/k, and that's REALLY the end of this fine text, cuz 
  220.  the bell is ringing.  adios...
  221.  
  222.                                - The Phelon
  223.                                  <hack>
  224.                                  <Sinful Seven>
  225.